home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / raytrace / portray / exam_002.sce < prev    next >
Text File  |  1993-12-26  |  1KB  |  92 lines

  1. ~ EXAM_002.SCE - This file shows the different appearence of 50, 100 and 200
  2.   as values for pure specular materials
  3.  
  4.   Written on : 26th December 1993
  5.   Author     : Peter Morris
  6.  
  7. ~
  8.  
  9. camera
  10.    look-at (0.0 0.0 0.0)
  11.    drop-line (0 -1 0)
  12.    origin (-3 3 -8)
  13.    depth 0.56
  14.    x-size 0.64
  15.    y-size 0.48
  16.    filter standard
  17. ;
  18.  
  19. image
  20.    xsize 640
  21.    ysize 480
  22. ;
  23.  
  24. object
  25.    plane
  26.       position (-1000 0 -1000)
  27.       normal (0 1 0)
  28.       x-axis (1 0 0)
  29.       y-axis (0 0 1)
  30.    ;
  31.    material
  32.       chequers
  33.          material-a
  34.             colour (1 1 1)
  35.          ;
  36.          material-b
  37.             colour (0 0 0)
  38.          ;
  39.       ;
  40.    ;
  41. ;
  42.  
  43. object
  44.    sphere
  45.       centre (-3 1 0)
  46.       radius 1
  47.    ;
  48.    material
  49.       colour (0 1 0)
  50.       diffuse-reflection 0.0
  51.       specular-reflection 1.0
  52.       reflection 0.1
  53.       specular-power 10
  54.    ;
  55. ;
  56.  
  57.  
  58. object
  59.    sphere
  60.       centre (0 1 0)
  61.       radius 1
  62.    ;
  63.    material
  64.       colour (0 1 0)
  65.       diffuse-reflection 0.0
  66.       specular-reflection 1.0
  67.       reflection 0.1
  68.       specular-power 100
  69.    ;
  70. ;
  71.  
  72.  
  73. object
  74.    sphere
  75.       centre (3 1 0)
  76.       radius 1
  77.    ;
  78.    material
  79.       colour (0 1 0)
  80.       diffuse-reflection 0.0
  81.       specular-reflection 1.0
  82.       reflection 0.1
  83.       specular-power 1000
  84.    ;
  85. ;
  86.  
  87. light
  88.    colour (1 1 1)
  89.    position (-400 1000 -300)
  90. ;
  91.  
  92.